Modif docker + ajout de la fonction de text aléatoire
This commit is contained in:
25
truenas-build.yml
Normal file
25
truenas-build.yml
Normal file
@@ -0,0 +1,25 @@
|
||||
version: '3'
|
||||
|
||||
services:
|
||||
api:
|
||||
image: elpoyo/patois-api:latest
|
||||
restart: always
|
||||
ports:
|
||||
- '52000:3000'
|
||||
environment:
|
||||
- PORT=3000
|
||||
- TEXTS_PATH=/app/texts
|
||||
- NODE_ENV=production
|
||||
volumes:
|
||||
- /mnt/Data/configs/patois:/app/texts
|
||||
|
||||
frontend:
|
||||
build:
|
||||
context: .
|
||||
args:
|
||||
- VITE_TEXTS_API_URL=https://patois.lagaudiere.uk/api
|
||||
restart: always
|
||||
ports:
|
||||
- '52001:80'
|
||||
depends_on:
|
||||
- api
|
||||
Reference in New Issue
Block a user