initial commit

This commit is contained in:
2025-06-01 14:13:10 +02:00
commit a301afd5d7
6 changed files with 33 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
.env
+11
View File
@@ -0,0 +1,11 @@
[Container]
Image=git.legonzaur.fr/legonzaur/vote-back:latest
Environment=API_PREFIX=/api
Environment=DEV_MODE=false
EnvironmentFile=./.env
Pod=vote.pod
[Service]
Restart=always
[Install]
WantedBy=default.target
+11
View File
@@ -0,0 +1,11 @@
[Container]
Image=git.legonzaur.fr/legonzaur/vote-front:latest
Environment=NUXT_PUBLIC_API_BASE=/api
Environment=PORT=3001
Pod=vote.pod
[Service]
Restart=always
[Install]
WantedBy=default.target
+10
View File
@@ -0,0 +1,10 @@
[Container]
Image=docker.io/library/postgres:17
Volume=%h/volumes/bdd-pg17:/var/lib/postgresql/data:Z
Environment=POSTGRES_PASSWORD=SUPERMDP
HostName=postgres
[Service]
Restart=always
[Install]
WantedBy=default.target
View File
View File