2023-05-28 12:56:31 +02:00
|
|
|
version: '3'
|
|
|
|
|
|
|
|
services:
|
2023-07-10 17:15:00 +02:00
|
|
|
frontend:
|
|
|
|
image: git.webdeploy.it/pianello/frontend
|
2023-05-28 12:56:31 +02:00
|
|
|
restart: always
|
|
|
|
build:
|
2023-07-10 18:05:57 +02:00
|
|
|
context: frontend
|
2023-05-28 12:56:31 +02:00
|
|
|
dockerfile: Dockerfile
|
2023-12-27 12:05:16 +01:00
|
|
|
args:
|
2023-12-27 12:11:40 +01:00
|
|
|
PUBLIC_BACKEND_URL: ${PUBLIC_BACKEND_URL}
|
2023-05-31 17:33:26 +02:00
|
|
|
|
|
|
|
version_tag:
|
2023-07-10 17:15:00 +02:00
|
|
|
extends: frontend
|
|
|
|
image: git.webdeploy.it/pianello/frontend:${TAG}
|
|
|
|
|