mirror of
https://github.com/usatiuk/photos.git
synced 2025-10-28 15:27:49 +01:00
23 lines
395 B
YAML
23 lines
395 B
YAML
version: "3.8"
|
|
services:
|
|
photosapp:
|
|
image: docker.io/stepanusatiuk/photos_test
|
|
ports:
|
|
- "8080:8080"
|
|
volumes:
|
|
- ./data:/usr/src/app/data
|
|
environment:
|
|
- JWT_SECRET=huegrhuigerhupoiervw
|
|
env_file:
|
|
- db.env
|
|
depends_on:
|
|
- db
|
|
db:
|
|
image: mariadb
|
|
restart: always
|
|
volumes:
|
|
- ./dbdata:/var/lib/mysql
|
|
env_file:
|
|
- db.env
|
|
|