Skip to content

Commit

Permalink
Add variations around Postgres, Mongo and the Requests Library
Browse files Browse the repository at this point in the history
  • Loading branch information
fchauvel committed Nov 8, 2019
1 parent 8ce7b69 commit cd299eb
Showing 1 changed file with 24 additions and 2 deletions.
26 changes: 24 additions & 2 deletions samples/stamp/atos/functional/camp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,15 @@ components:
replacements:
- "Django==1.10.2"
- "Django==1.11"
requests:
values: [v2.18, 2.22]
realization:
- targets: [ citygo/requirements.txt ]
pattern: "requests>=2.18.2"
replacements:
- "requests==2.18.2"
- "requests==2.22.0"

implementation:
docker:
file: citygo/Dockerfile
Expand All @@ -73,22 +82,35 @@ components:
docker:
image: ubuntu:xenial

mongo:
mongo4:
provides_services: [ Mongo ]
implementation:
docker:
image: mongo:4.0.6-xenial

mongo3:
provides_services: [ Mongo ]
implementation:
docker:
image: mongo:3-xenial


python:
provides_features: [ Python ]
requires_features: [ Ubuntu ]
implementation:
docker:
file: python/Dockerfile

postgres:
postgres9:
provides_services: [ Postgres ]
implementation:
docker:
image: postgres:9.3

postgres10:
provides_services: [ Postgres ]
implementation:
docker:
image: postgres:10

0 comments on commit cd299eb

Please sign in to comment.