mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-10 02:05:10 +00:00
21 lines
446 B
YAML
21 lines
446 B
YAML
kind: pipeline
|
|
name: default
|
|
|
|
#asd
|
|
|
|
steps:
|
|
- name: test
|
|
image: compose:alpine-1.27.4
|
|
volumes:
|
|
- name: docker_sock
|
|
path: /var/run/docker.sock
|
|
commands:
|
|
- docker build . --file docker/prod/Dockerfile --tag dessalines/lemmy:travis
|
|
- docker-compose up -f docker/travis/docker-compose.yml -d
|
|
- sleep 10
|
|
- docker-compose down
|
|
|
|
volumes:
|
|
- name: docker_sock
|
|
host:
|
|
path: /var/run/docker.sock |