change port
Some checks failed
ci/woodpecker/manual/woodpecker Pipeline failed

This commit is contained in:
2025-09-01 15:16:49 +03:00
parent 21bfd0565c
commit de8ef086f0

View File

@@ -1,35 +1,6 @@
variables:
IMAGE: flask-demo:latest
volumes:
- name: dockersock
host:
path: /var/run/docker.sock
steps:
test:
image: python:3.11
commands:
- pip install -r requirements.txt
- pytest -q
build:
image: docker:27-cli
volumes:
- name: dockersock
path: /var/run/docker.sock
commands:
- docker build -t ${IMAGE} .
deploy:
image: docker:27-cli
volumes:
- name: dockersock
path: /var/run/docker.sock
commands:
- docker compose up -d
when:
event:
- push
branch:
- main