mirror of
https://github.com/Sonny93/my-links.git
synced 2025-12-09 23:15:36 +00:00
Need to find a way to pull docker image and push Prisma migrations without reinstalling all packages
19 lines
260 B
YAML
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
|