Skip to content

Commit

Permalink
only thing that changed
Browse files Browse the repository at this point in the history
  • Loading branch information
FinalAngel committed Feb 29, 2024
1 parent 7551879 commit 2cd9e88
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,17 @@ services:
- ./:/var/www
- ./public:/var/www/public
environment:
DATABASE_URL: postgres://postgres@database_default:5432/db
DATABASE_URL: mysql://root@database_default:3306/db
links:
- "database_default"

database_default:
image: postgres:13.5-alpine
image: mysql:8.0
environment:
POSTGRES_DB: "db"
POSTGRES_HOST_AUTH_METHOD: "trust"
SERVICE_MANAGER: "fsm-postgres"
MYSQL_DATABASE: "db"
MYSQL_ALLOW_EMPTY_PASSWORD: "yes"
volumes:
- database-default:/var/lib/postgresql/data
- "database-default:/var/lib/mysql"

volumes:
database-default:

0 comments on commit 2cd9e88

Please sign in to comment.