You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

29 lines
567 B

services:
db:
image: mariadb
restart: always
environment:
- MARIADB_ROOT_PASSWORD=password
- MARIADB_DATABASE=djing_db
- MARIADB_INITDB_SKIP_TZINFO=y
volumes:
- db-data:/var/lib/mysql
- /etc/localtime:/etc/localtime:ro
app:
image: nerosketch/djing:latest
depends_on:
- db
stdin_open: true
tty: true
tmpfs:
- /tmp
volumes:
- media-data:/var/www/djing/media
- /etc/localtime:/etc/localtime:ro
ports:
- 8000:8000
volumes:
db-data:
media-data:
nginx_logs: