Files
my-links/docker-compose.yml
Sonny b830837cee ci: force docker build on github workflows
Need to find a way to pull docker image and push Prisma migrations without reinstalling all packages
2023-11-20 01:11:33 +01:00

19 lines
260 B
YAML

version: "3.8"
networks:
mylinks_app:
external: true
services:
mylinks:
restart: always
container_name: MyLinks
build:
context: .
ports:
- "127.0.0.1:5000:3000"
env_file:
- .env
networks:
- mylinks_app