mirror of
https://github.com/Sonny93/my-links.git
synced 2025-12-09 07:03:25 +00:00
29 lines
511 B
YAML
29 lines
511 B
YAML
version: "3.8"
|
|
|
|
volumes:
|
|
db_volume_data:
|
|
driver: local
|
|
|
|
services:
|
|
mylinks_db:
|
|
image: mysql:latest
|
|
restart: always
|
|
volumes:
|
|
- db_volume_data:/var/lib/postgresql/data
|
|
- ./docker-config/mysql-dev-init.sql:/docker-entrypoint-initdb.d/init.sql
|
|
env_file:
|
|
- .env
|
|
|
|
mylinks:
|
|
restart: always
|
|
container_name: MyLinks
|
|
build:
|
|
context: .
|
|
ports:
|
|
- 3000:3000
|
|
env_file:
|
|
- .env
|
|
depends_on:
|
|
mylinks_db:
|
|
condition: service_started
|