change port

This commit is contained in:
2025-09-01 16:47:03 +03:00
parent 5e4285e1ad
commit 52b2daee6f

View File

@@ -1,22 +1,22 @@
steps:
test:
image: python:3.11
image: "python:3.11"
commands:
- pip install -r requirements.txt
- pytest -q
build:
image: docker:27-cli
image: "docker:27-cli"
volumes:
- name: dockersock
path: /var/run/docker.sock
environment:
IMAGE: flask-demo:latest
IMAGE: "flask-demo:latest"
commands:
- docker build -t $IMAGE .
- docker build -t "$IMAGE" .
deploy:
image: docker:27-cli
image: "docker:27-cli"
volumes:
- name: dockersock
path: /var/run/docker.sock
@@ -28,7 +28,6 @@ steps:
branch:
- main
# объявление хостового тома для монтирования docker.sock
volumes:
- name: dockersock
host: